--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Commit 9df412fb4f2c1dc0f3f123cc043e4e255f16abd9
Parents : 69aa87e
Author : Mark Qvist <mark@unsigned.io>
Date : 2022-10-03T14:30:08+02:00
Fetch app dir for android only
Changes
Diff
diff --git a/sbapp/main.py b/sbapp/main.py
index 61d36aa9..ee99701f 100644
--- a/sbapp/main.py
+++ b/sbapp/main.py
@@ -73,11 +73,12 @@ class SidebandApp(MDApp):
self.title = "Sideband"
self.app_state = SidebandApp.STARTING
self.android_service = None
- self.app_dir = plyer.storagepath.get_application_dir()
if RNS.vendor.platformutils.get_platform() == "android":
+ self.app_dir = plyer.storagepath.get_application_dir()
self.sideband = SidebandCore(self, is_client=True, android_app_dir=self.app_dir)
else:
+ self.app_dir = None
self.sideband = SidebandCore(self, is_client=False)
self.update_ui_theme()
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────